home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 006a / arch10.zip / ARCH.PPS < prev    next >
Text File  |  1993-05-16  |  613b  |  21 lines

  1. ;---------------------------------------------
  2. ;  Automatic Read Command Help
  3. ;  v 1.0 - 05/16/93 - Gerry Schechter
  4. ;---------------------------------------------
  5.  
  6. String CmdLine
  7.  
  8. CmdLine = TokenStr()                   ; Save user's command
  9.  
  10. If (Len(CmdLine) > 0) Then             ; User doesn't need help if true
  11.    KbdStuff "R "+CmdLine+Chr(13)
  12.    End
  13. EndIf
  14.  
  15. PrintLn ""
  16. PrintLn "@X0AType @X0FR S@X0A to read mail since your last time on."
  17. PrintLn "@X0AType @X0FR Y S@X0A to read only your mail since last time on."
  18. PrintLn "@X0AType @X0FR H@X0A for additional help with reading mail."
  19.  
  20. End
  21.